home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / PSK.ZIP / SECURITY.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-28  |  412 b   |  25 lines

  1. /*
  2.     security.H
  3.  
  4.     File Security Header File
  5.  
  6.     Copyright (C) 1992, Geoff Friesen B.Sc.
  7.     All rights reserved.
  8.  
  9.     Borland C++ 3.1
  10. */
  11.  
  12. #include <stdio.H>
  13.  
  14. #ifdef __cplusplus
  15. extern "C"
  16. {
  17. #endif
  18.  
  19. size_t    s_fread        (void *ptr, size_t size, size_t n, FILE *stream);
  20. size_t    s_fwrite    (void *ptr, size_t size, size_t n, FILE *stream);
  21. int    s_pmtpwd    (char *title, char *pwd);
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif